crypto/tls.clientHandshakeStateTLS13.hello (field)
24 uses
crypto/tls (current package)
handshake_client.go#L359: hello: hello,
handshake_client_tls13.go#L25: hello *clientHelloMsg
handshake_client_tls13.go#L60: if hs.keyShareKeys == nil || hs.keyShareKeys.ecdhe == nil || len(hs.hello.keyShares) == 0 {
handshake_client_tls13.go#L70: if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L103: hs.hello = hs.echContext.innerHello
handshake_client_tls13.go#L113: if hs.hello.serverName == "" && hs.serverHello.serverNameAck {
handshake_client_tls13.go#L199: if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client_tls13.go#L209: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_client_tls13.go#L255: hello := hs.hello
handshake_client_tls13.go#L321: if slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L383: hs.hello.keyShares = hello.keyShares
handshake_client_tls13.go#L389: if err := computeAndUpdateOuterECHExtension(hs.hello, hs.echContext.innerHello, hs.echContext, false); err != nil {
handshake_client_tls13.go#L393: hs.hello = hello
handshake_client_tls13.go#L396: if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L443: if !slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L454: if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
handshake_client_tls13.go#L459: if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
handshake_client_tls13.go#L539: err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
handshake_client_tls13.go#L544: err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
handshake_client_tls13.go#L570: if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
handshake_client_tls13.go#L594: if !hs.hello.earlyData && encryptedExtensions.earlyData {
handshake_client_tls13.go#L598: if hs.hello.earlyData && !encryptedExtensions.earlyData {
handshake_client_tls13.go#L745: err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
handshake_client_tls13.go#L750: err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |